home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / iszero.man < prev    next >
Text File  |  1990-10-12  |  2KB  |  53 lines

  1. '\" Copyright 1990 Regents of the University of California
  2. '\" Permission to use, copy, modify, and distribute this
  3. '\" documentation for any purpose and without fee is hereby
  4. '\" granted, provided that this notice appears in all copies.
  5. '\" The University of California makes no representations about
  6. '\" the suitability of this material for any purpose.  It is
  7. '\" provided "as is" without express or implied warranty.
  8. '\" 
  9. '\" $Header: /sprite/src/lib/c/etc/RCS/isinf.man,v 1.1 89/08/04 16:18:45 douglis Exp $ SPRITE (Berkeley)
  10. '/" 
  11. .so \*(]ltmac.sprite
  12. .HS isnan lib
  13. .BS
  14. '\" Note:  do not modify the .SH NAME line immediately below!
  15. .SH NAME
  16. iszero, isnormal, issubnormal, signbit \- Determine properties of IEE
  17. double-precision floating point numbers.
  18. .SH SYNOPSIS
  19. .nf
  20. .sp
  21. int
  22. \fBiszero\fR(\fIvalue\fP)
  23. .sp
  24. int
  25. \fBisnormal\fR(\fIvalue\fP)
  26. .sp
  27. int
  28. \fBissubnormal\fR(\fIvalue\fP)
  29. .sp
  30. int
  31. \fBsignbit\fR(\fIvalue\fP)
  32. .SH ARGUMENTS
  33. .AP double value in
  34. Double-precision floating point number to check.
  35. .BE
  36.  
  37. .SH DESCRIPTION
  38. .PP
  39. \fBisnormal\fR returns 1 if its argument is an IEEE double-precision
  40. normal floating-point number.  \fBisnormal\fR returns 0 otherwise.
  41. .PP
  42. \fBissubnormal\fR returns 1 if its argument is an IEEE double-precision
  43. subnormal floating-point number.  \fBisnormal\fR returns 0 otherwise.
  44. .PP
  45. \fBiszero\fR returns 1 if its argument is an IEEE double-precision
  46. 0.  \fBisnormal\fR returns 0 otherwise.
  47. .PP
  48. \fBsignbit\fR returns 1 if its argument is an IEEE double-precision
  49. floating-point number with sign bit set.  \fBisnormal\fR returns 0 otherwise.
  50. .PP
  51. .SH KEYWORDS
  52. not a number, infinity, IEEE, double
  53.